runtime._panic.link (field)
18 uses
runtime (current package)
heapdump.go#L396: for p := gp._panic; p != nil; p = p.link {
heapdump.go#L404: dumpint(uint64(uintptr(unsafe.Pointer(p.link))))
panic.go#L715: if p.link != nil && *efaceOf(&p.link.arg) == *efaceOf(&p.arg) {
panic.go#L718: p.link.repanicked = true
panic.go#L719: p = p.link
panic.go#L728: p = p.link
panic.go#L735: if p.link != nil {
panic.go#L736: printpanics(p.link)
panic.go#L737: if p.link.repanicked {
panic.go#L740: if !p.link.goexit {
panic.go#L913: p.link = gp._panic
panic.go#L1264: for x := p; x != nil; x = x.link {
panic.go#L1265: if x.link != nil && *efaceOf(&x.link.arg) == *efaceOf(&x.arg) {
panic.go#L1268: x.link.repanicked = true
panic.go#L1311: for ; p != nil && uintptr(p.startSP) < sp; p = p.link {
runtime2.go#L1175: link *_panic // link to earlier panic
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |